home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Modules / BackSpaceModules / Source / Charender / DN3DString.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-20  |  443 b   |  21 lines

  1. //#import <3Dkit/3Dkit.h>
  2. #import <appkit/appkit.h>
  3. #import <ri/ri.h>
  4. #import <3Dkit/N3DShape.h>
  5.  
  6. @interface DN3DString : N3DShape
  7. {
  8.     float resolution[2];
  9.     RtFloat **mesh;
  10.     int numPaths;
  11.     int *numCtrlPoints;
  12.     char *textFont;
  13. }
  14. - init;
  15. - setResolution:(float)newRes;
  16. - setTextString:(const char *)aString andFont:(const char *)aFont;
  17. - setTextFont:(const char *)aFont;
  18. - setTextString:(const char *)aString;
  19. - renderSelf:(RtToken)context;
  20. @end
  21.